-
-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jacoco coverrage Threshold rouding error #10900
Conversation
@@ -1292,7 +1292,7 @@ | |||
<element>CLASS</element> | |||
<limits> | |||
<limit> | |||
<counter>LINE</counter> | |||
<counter>BRANCH</counter> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then it becomes a duplicated limit of the limit that is defined below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so what's your suggestion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know, I've not done any investigation to fix the mentioned issue.
I'm just noticing that this limit is already defined.
Maybe @DamnClin know better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is to go from
<value>COVEREDRATIO</value>
<minimum>1.00</minimum>
To
<value>MISSEDCOUNT</value>
<maximum>0</maximum>
For both banch and line, I missed copy past in the ticket, forgot to remove the failing part...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@qmonmert : That means COVEREDRATIO
limits should be removed
7eeaa21
to
fb9962a
Compare
value = "COVEREDRATIO" | ||
minimum = "1.00".toBigDecimal() | ||
value = "MISSEDCOUNT" | ||
maximum = "1.00".toBigDecimal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 0 no?
value = "COVEREDRATIO" | ||
minimum = "1.00".toBigDecimal() | ||
value = "MISSEDCOUNT" | ||
maximum = "1.00".toBigDecimal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 0 no?
value = "COVEREDRATIO" | ||
minimum = "1.00".toBigDecimal() | ||
value = "MISSEDCOUNT" | ||
maximum = "1.00".toBigDecimal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 0 no?
value = "COVEREDRATIO" | ||
minimum = "1.00".toBigDecimal() | ||
value = "MISSEDCOUNT" | ||
maximum = "1.00".toBigDecimal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 0 no?
Fix #10752